🎖️GitЯра🎖️
Node / meshtastic / Meshtastic-Android / files / app / src / main / java / com / geeksville / mesh / database / QuickChatActionRepository.kt
Displaying Raw • Download
app/src/main/java/com/geeksville/mesh/database/QuickChatActionRepository.kt ui_message_list (be3f882f) Text, 1.86 KB
T8b949e/*
* Copyright (c) 2025 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787com.geeksville.mesh.database
Tff7b72import T7ee787com.geeksville.mesh.CoroutineDispatchers
Tff7b72import T7ee787com.geeksville.mesh.database.dao.QuickChatActionDao
Tff7b72import T7ee787com.geeksville.mesh.database.entity.QuickChatAction
Tff7b72import T7ee787kotlinx.coroutines.flow.flowOn
Tff7b72import T7ee787kotlinx.coroutines.withContext
Tff7b72import T7ee787javax.inject.Inject
Tff7b72class T56d364QuickChatActionRepository Tf0883e@Inject Tff7b72constructorTb4b4b4(
Tff7b72private Tff7b72val Te6edf3quickChatDaoLazyTb4b4b4: Te6edf3daggerTb4b4b4.Te6edf3LazyTff7b72<Te6edf3QuickChatActionDaoTff7b72>Tb4b4b4,
Tff7b72private Tff7b72val Te6edf3dispatchersTb4b4b4: Te6edf3CoroutineDispatchersTb4b4b4,
Tb4b4b4) Tb4b4b4{
Tff7b72private Tff7b72val Te6edf3quickChatActionDao Tff7b72by Te6edf3lazy Tb4b4b4{
Te6edf3quickChatDaoLazyTb4b4b4.Te6edf3getTb4b4b4(Tb4b4b4)
Tb4b4b4}
Tff7b72fun Td2a8ffgetAllActionsTb4b4b4(Tb4b4b4) Tff7b72= Te6edf3quickChatActionDaoTb4b4b4.Te6edf3getAllTb4b4b4(Tb4b4b4)Tb4b4b4.Te6edf3flowOnTb4b4b4(Te6edf3dispatchersTb4b4b4.Te6edf3ioTb4b4b4)
Tff7b72suspend Tff7b72fun Td2a8ffupsertTb4b4b4(Te6edf3actionTb4b4b4: Te6edf3QuickChatActionTb4b4b4) Tff7b72= Te6edf3withContextTb4b4b4(Te6edf3dispatchersTb4b4b4.Te6edf3ioTb4b4b4) Tb4b4b4{
Te6edf3quickChatActionDaoTb4b4b4.Te6edf3upsertTb4b4b4(Te6edf3actionTb4b4b4)
Tb4b4b4}
Tff7b72suspend Tff7b72fun Td2a8ffdeleteAllTb4b4b4(Tb4b4b4) Tff7b72= Te6edf3withContextTb4b4b4(Te6edf3dispatchersTb4b4b4.Te6edf3ioTb4b4b4) Tb4b4b4{
Te6edf3quickChatActionDaoTb4b4b4.Te6edf3deleteAllTb4b4b4(Tb4b4b4)
Tb4b4b4}
Tff7b72suspend Tff7b72fun Td2a8ffdeleteTb4b4b4(Te6edf3actionTb4b4b4: Te6edf3QuickChatActionTb4b4b4) Tff7b72= Te6edf3withContextTb4b4b4(Te6edf3dispatchersTb4b4b4.Te6edf3ioTb4b4b4) Tb4b4b4{
Te6edf3quickChatActionDaoTb4b4b4.Te6edf3deleteTb4b4b4(Te6edf3actionTb4b4b4)
Tb4b4b4}
Tff7b72suspend Tff7b72fun Td2a8ffsetItemPositionTb4b4b4(Te6edf3uuidTb4b4b4: Tffa657LongTb4b4b4, Te6edf3newPosTb4b4b4: Tffa657IntTb4b4b4) Tff7b72= Te6edf3withContextTb4b4b4(Te6edf3dispatchersTb4b4b4.Te6edf3ioTb4b4b4) Tb4b4b4{
Te6edf3quickChatActionDaoTb4b4b4.Te6edf3updateActionPositionTb4b4b4(Te6edf3uuidTb4b4b4, Te6edf3newPosTb4b4b4)
Tb4b4b4}
Tb4b4b4}
Served by rngit 1.5.1 - Generated in 0.05s